home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-13 / me_cd22.zip / MUTT2.ZIP / EMACS.MUT < prev    next >
Lisp/Scheme  |  1992-04-27  |  409b  |  23 lines

  1.   ;; emacs.mut
  2.   ;; A few routines I don't put in init.mut that make ME more EMACS like.
  3.   ;; C Durland    Public Domain
  4.  
  5. (defun set-fill-column
  6. {
  7.   (int col)
  8.  
  9.   (col (if (arg-flag) (arg-prefix) (current-column)))
  10.   (if (< col 10)
  11.     (msg "Fill column too small.")
  12.     (msg "Fill column set to " (word-wrap col))
  13.   )
  14. })
  15.  
  16.  
  17. (defun
  18.   MAIN
  19.   {
  20.     (bind-to-key "set-fill-column" "C-xf")
  21.   }
  22. )
  23.